迷宫问题--java

 

package test4;

import java.util.Stack;

public class Maze {
 private class Point{
  int x = 0;
  int y = 0;
  public String toString(){
   return "{" + x +"," + y + "}";
  }
  public boolean equals(Point p){
   return (this.x == p.x)&&(this.y == p.y);
  }
  public Point(int x,int y){
   this.x = x;
   this.y = y;
  }
 }
 private int[][] maze =  new int[][] {{ 0, 0, 1, 0, 1, 0, 1, 0, 1, 0},
    { 0, 0, 1, 1, 1, 0, 0, 0, 1, 0 },
    { 0, 1, 0, 0, 1, 0, 0, 0, 0, 1 },
    { 0, 0, 0, 0, 1, 0, 0, 0, 1, 1 },
    { 0, 0, 1, 0, 0, 0, 0, 0, 0, 1 },
    { 1, 0, 1, 0, 1, 0, 0, 1, 0, 0 },
    { 0, 1, 0, 0, 1, 0, 0, 1, 0, 1 },
    { 1, 1, 1, 0, 1, 1, 0, 1, 0, 0 }
   };
 private Stack<Point> stack = new Stack<Point>();
 public Maze(){
  
 }
 public Maze(int[][] maze){
  this.maze = maze;
 }
 public void go(){
  Point out = new Point(maze.length-1,maze[0].length-1);//出口
   Point in = new Point(0,0);//入口
  Point curNode = in;//当前节点
  Point nextNode = null;//下一个访问点
  while(!curNode.equals(out)){
   nextNode = new Point(curNode.x,curNode.y);
   if((curNode.x + 1) < maze.length && maze[curNode.x + 1][curNode.y] == 0){
    nextNode.x++;
   }else if((curNode.y + 1)<maze[0].length && maze[curNode.x][curNode.y + 1] == 0){
    nextNode.y ++ ;
   }else if((curNode.x - 1) >= 0 && maze[curNode.x - 1][curNode.y] == 0){
    nextNode.x-- ;
   }else if(curNode.y - 1 >= 0 && maze[curNode.x][curNode.y -1] == 0){
    nextNode.y--;
   }else{
    maze[curNode.x][curNode.y] = 3;
    if(stack.isEmpty()){
     System.out.println("No path");
     return;
    }
    curNode = stack.pop();
    continue;
   }
   stack.push(curNode);
   maze[curNode.x][curNode.y] = 2;
   curNode = nextNode;
  }
  if(nextNode.equals(out)){
   stack.push(nextNode);
   maze[nextNode.x][nextNode.y] = 2;
  }
  for(int i =0 ;i < stack.size() ;i ++){
   System.out.println(stack.elementAt(i));
  }
 }
 public static void main(String[] args){
  new Maze().go();
 }

}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值